Seth was confused by keybindings. They should be Alt, not Ctl. Also,
authorJonathan Blandford <jrb@gnome.org>
Mon, 23 Feb 2004 22:07:55 +0000 (22:07 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Mon, 23 Feb 2004 22:07:55 +0000 (22:07 +0000)
Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>

        * gtk/gtkfilechooserdefault.c
        (gtk_file_chooser_default_class_init): Seth was confused by
        keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
        home, not up.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkfilechooserdefault.c

index 8769b845a42e8018e47cfd58312555e428ce4363..77cc4393a4a6060146dd5bb495c13d81f1addf42 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_class_init): Seth was confused by
+       keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
+       home, not up.
+
 Mon Feb 23 15:23:23 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
index 8769b845a42e8018e47cfd58312555e428ce4363..77cc4393a4a6060146dd5bb495c13d81f1addf42 100644 (file)
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_class_init): Seth was confused by
+       keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
+       home, not up.
+
 Mon Feb 23 15:23:23 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
index 8769b845a42e8018e47cfd58312555e428ce4363..77cc4393a4a6060146dd5bb495c13d81f1addf42 100644 (file)
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_class_init): Seth was confused by
+       keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
+       home, not up.
+
 Mon Feb 23 15:23:23 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
index 8769b845a42e8018e47cfd58312555e428ce4363..77cc4393a4a6060146dd5bb495c13d81f1addf42 100644 (file)
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_class_init): Seth was confused by
+       keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
+       home, not up.
+
 Mon Feb 23 15:23:23 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
index 8769b845a42e8018e47cfd58312555e428ce4363..77cc4393a4a6060146dd5bb495c13d81f1addf42 100644 (file)
@@ -1,3 +1,10 @@
+Mon Feb 23 16:52:12 2004  Jonathan Blandford  <jrb@gnome.org>
+
+       * gtk/gtkfilechooserdefault.c
+       (gtk_file_chooser_default_class_init): Seth was confused by
+       keybindings.  They should be Alt, not Ctl.  Also, A-Home should go
+       home, not up.
+
 Mon Feb 23 15:23:23 2004  Jonathan Blandford  <jrb@gnome.org>
 
        * gtk/gtkpathbar.c (gtk_path_bar_set_path): Display the root a bit
index c49dba188903c35ac72538928f20f97cd1d85627..73c1beb746a92409771abf00e5f3a4ee1b04d3a1 100644 (file)
@@ -401,21 +401,21 @@ gtk_file_chooser_default_class_init (GtkFileChooserDefaultClass *class)
                                0);
 
   gtk_binding_entry_add_signal (binding_set,
-                               GDK_Up, GDK_CONTROL_MASK,
+                               GDK_Up, GDK_MOD1_MASK,
                                "up-folder",
                                0);
   gtk_binding_entry_add_signal (binding_set,
-                               GDK_KP_Up, GDK_CONTROL_MASK,
+                               GDK_KP_Up, GDK_MOD1_MASK,
                                "up-folder",
                                0);
 
   gtk_binding_entry_add_signal (binding_set,
-                               GDK_Home, GDK_CONTROL_MASK,
-                               "up-folder",
+                               GDK_Home, GDK_MOD1_MASK,
+                               "home-folder",
                                0);
   gtk_binding_entry_add_signal (binding_set,
-                               GDK_KP_Home, GDK_CONTROL_MASK,
-                               "up-folder",
+                               GDK_KP_Home, GDK_MOD1_MASK,
+                               "home-folder",
                                0);
 
   _gtk_file_chooser_install_properties (gobject_class);